home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / config.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  157 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: config.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer  
  8. // File Creation Date: 02/19/1996 
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The Config class is a character string based singly linked list
  32. that is used to load program parameters from a ASCII text based
  33. configuration file.
  34. */
  35. // ----------------------------------------------------------- // 
  36. #include <stdlib.h>
  37. #include <fstream.h>
  38. #include <string.h>
  39. #include <ctype.h>
  40. #include "config.h"
  41.  
  42. Config::~Config()
  43. {
  44.   UnLoad();
  45. }
  46.  
  47. void Config::UnLoad()
  48. {
  49.   Clear();
  50. }         
  51.  
  52. int Config::Load(char *Fname)
  53. {
  54.   const int MaxLine = 512;
  55.   char LineBuffer[MaxLine];
  56.   char *buf;
  57.   int Status;
  58.   
  59.   // Open Config file
  60.   ifstream InFile(Fname, ios::in|ios::nocreate);
  61.   if(!InFile) return 0; 
  62.         
  63.   while(!InFile.eof())
  64.   {
  65.     // Read in config file line by line
  66.     InFile.getline(LineBuffer, MaxLine);
  67.  
  68.     // Allocate memory for temporary holding buffer
  69.     buf = new char[strlen(LineBuffer)+1];
  70.     if(!buf) return 0;
  71.     
  72.     // Copy contents of the array to temporary holding buffer
  73.     strcpy(buf, LineBuffer);
  74.  
  75.     // Load config file data into singly-linked list
  76.     Status = StoreCfgData(buf);
  77.     if(!Status) return 0;
  78.   }
  79.  
  80.   InFile.close();
  81.   delete[] buf;
  82.   return 1; // Indicates success
  83. }
  84.  
  85. int Config::StoreCfgData(char *str)
  86. {
  87.   ConfigData *ptr = new ConfigData;
  88.   ChSNode *chsptr;
  89.  
  90.   // Look for alphanumeric lines containing an equal sign
  91.  if (isalnum(str[0]) && strchr(str, '='))
  92.  {
  93.    ptr->Name = str;
  94.    
  95.    chsptr = Store(ptr->Name); // Store the parameter name
  96.    if(!chsptr) return 0;
  97.    
  98.    // Copy config file parameter value into memory
  99.    ptr->Value = strchr(str, '='); // Strip off parameter name
  100.    *ptr->Value++ = '\0';          // Strip off equal sign
  101.  
  102.    chsptr = Store(ptr->Value); // Store the config value
  103.    if(!chsptr) return 0;
  104.  }
  105.  
  106.  delete ptr;
  107.  return 1; // Indicate success
  108. }
  109.  
  110. char* Config::GetStrValue(char *Name)
  111. {
  112.   ChSNode *ptr;
  113.  
  114.   ptr = Find(Name);
  115.   if(ptr) return ptr->GetNext()->Data;  // Return config value
  116.  
  117.   //Return NULL if config value is not found
  118.   return 0;
  119. }
  120.  
  121. int Config::GetIntValue(char *Name)
  122. {
  123.   ChSNode *ptr;
  124.  
  125.   ptr = Find(Name);
  126.   if(ptr) return atoi(ptr->GetNext()->Data); // Return config value
  127.  
  128.   //Return NULL if config value is not found
  129.   return 0;
  130. }
  131.  
  132. double Config::GetDFPValue(char *Name)
  133. {
  134.   ChSNode *ptr;
  135.  
  136.   ptr = Find(Name);
  137.   if(ptr) return atof(ptr->GetNext()->Data); // Return config value
  138.  
  139.   //Return NULL if config value is not found
  140.   return 0;
  141. }
  142.  
  143. long Config::GetLongValue(char *Name)
  144. {
  145.   ChSNode *ptr;
  146.  
  147.   ptr = Find(Name);
  148.   if(ptr) return atol(ptr->GetNext()->Data); // Return config value
  149.  
  150.   //Return NULL if config value is not found
  151.   return 0;
  152. }
  153. // ----------------------------------------------------------- //
  154. // ------------------------------- //
  155. // --------- End of File --------- //
  156. // ------------------------------- //
  157.